Dynomotion

Group: DynoMotion Message: 11383 From: Tom Kerekes Date: 4/14/2015
Subject: Re: 3D printing in Spherical Space with KFLOP - basic questions [1 A
Attachments :
    Hi Paul,

    Regarding:

    #1 - I don't see the need for two streams of GCode.  Can you explain this?
    #2 - One KFLOP should work.  It allows up to 6 axes of coordinated motion plus up to 2 additional slaved ore independent axes.
    #3 - Our GCode interpreter runs on the PC is not really set up for streaming.  It executes a file.  I suppose you could keep creating and submitting smaller files as "blocks" or something.  Below our GCode Interpreter layer is our Coodinated Motion Libraries where you can submit motion segment by segment or arc by arc from your application.  That might be another approach.

    Regarding kinematics:  Have you worked out the geometrical equations?  I think you will need to work out how to compute the actuator positions given an xyz location.  Seems relatively straightforward involving a center point Xc, Yc, Zc and the xyz target CAD point and computing some deltas and some arc-tangents.   The reverse transformation should be handled automatically by the Kinematics class using a general numerical method.

    Regarding going around and around.  I think you can handle that in the Kinematics.  When computing the arc-tangent adjust the result by however many 2 Pi to as close as possible to the last angle.  See the attached Tangential Knife algorithm attached.  How many revs do you expect to go?  I suppose there might be some numerical issues if it is over thousands.

    I don't know how you would plan the 5 axis paths.

    Regards
    TK

    Group: DynoMotion Message: 11385 From: psorey@rocketmail.com Date: 4/14/2015
    Subject: Re: 3D printing in Spherical Space with KFLOP - basic questions [1 A
    1.  Two steams of gcode:  usually the spray is roughly perpendicular to the form we are shooting at.  At times, however, the wrist holding the sprayer needs to swing right or left,or up or down to spray perpendicularly to projections protruding from  the form;  imagine an igloo, generally hemispherical, but with an entrance tunnel that protrudes a bit from the hemisphere.  We need to spray the sides and top of the entrance tunnel.

    So one stream of gcode would get the linear actuator pointed at a particular azimuth and altitude in relation to the center of the sphere. In fact, the actuator ALWAYS points toward the center.  Sometimes, however, the knuckle, or wrist needs to swing the TIP of the actuator holding the spray sideways.  So three axes of coordinated motion move the linear actuator to a particular azimuth and altitude, but wouldn't I need another separate gcode to move the wrist side to side?  Or is there a way to 'tag' gcode commands in a single file (or stream) to let the KFLOP know that a non-coordinated motion is also required?

    Yes I have the formula for calculating azimuth and altitude from an xyz point, but I don't see how to use the formula in Kinematics.  So you think it might be easier to have my own app that calculates actuator positions from xyz coordinates?

    Regarding Steve's question:  we are spraying a cementitious material onto a form to make a dome.  The machine is 44' wide.

    Thanks,  Paul